runtime.mcache.tiny (field)

9 uses

	runtime (current package)
		malloc.go#L1161: 	if off+size <= maxTinySize && c.tiny != 0 {
		malloc.go#L1163: 		x := unsafe.Pointer(c.tiny + off)
		malloc.go#L1182: 	if !raceenabled && (size < c.tinyoffset || c.tiny == 0) {
		malloc.go#L1184: 		c.tiny = uintptr(x)
		mcache.go#L40: 	tiny       uintptr
		mcache.go#L305: 	c.tiny = 0
		mgcmark.go#L1722: 		if c == nil || c.tiny == 0 {
		mgcmark.go#L1725: 		_, span, objIndex := findObject(c.tiny, 0, 0)
		mgcmark.go#L1727: 		greyobject(c.tiny, 0, 0, span, gcw, objIndex)